#navbar {
  top: 0;
  left: 0;
  padding-top: 10px;
  position: absolute;
  width: 100%;
  border: 1px solid black;
  height: 60px;
  background: rgb(51, 53, 69);
}

#navin {
  margin: auto;
  width: 80%;
  display: grid;
  grid-template-columns: 15% 60% 35%;
}

#navin>div {
  margin: auto;
  padding: auto;
}

#navlogo>img {
  height: 40px;
  width: 120px;
  background-color: rgb(51, 53, 69);
  margin-top: 10px;
}

#searchbar {
  margin: auto;
  padding: auto;
}

#navinput {
  padding-left: 10px;
  border: none;
  margin-left: -50px;
  width: 600px;
  height: 30px;
  border-radius: 5px;
}

#navdropcontent {
  margin: auto;
  padding: 5px;
  border: none;
  background: rgb(51, 53, 69);
  color: white;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

#navbuttons {
  justify-self: right;
  width: 100%;
  height: 25px;
  display: grid;
  grid-template-columns: repeat(3, 33%);
  text-align: center;
}

#navsign {
  color: rgb(255, 255, 255);
  background-color: rgb(248, 68, 100);
  font-size: 14px;
  height: 25px;
  width: 60px;
  text-align: center;
  border-radius: 4px;
  border: 1px solid rgb(248, 68, 100);
  font-weight: bold;
  padding: 0px -2px;
}

#navsign:hover {
  background-color: rgb(214, 55, 55);
  cursor: pointer;
  border: none;
}

#navsign:active {
  background-color: white;
  color: red;
}

.sidebar {
  background-color: white;
  width: 0px;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 62px;
  padding-bottom: 60px;
}

#cross {
  margin-top: -62px;
  height: 102px;
  background: rgb(51, 53, 69);
}

#username {
  color: white;
  padding: 0px 50px 50px 50px;
  margin-top: -50px;
}

.sidebar a {
  z-index: 3;
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: white;
  display: block;
  transition: 0.3s;
}

.sidebar a:hover {
  color: red;
  cursor: pointer;
}

.sidebar .closebtn {
  position: absolute;
  z-index: 500;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.openbtn {
  font-size: 20px;
  cursor: pointer;
  background-color: #111;
  color: white;
  padding: 10px 15px;
  border: none;
}

.openbtn:hover {
  background-color: #444;
}

#mySidebar {
  z-index: 200;
}

#mySidebar>div {
  height: 50px;
  text-align: center;
}

#mySidebar button {
  border: none;
  background-color: white;
  border-bottom: 1px solid gray;
  height: 100%;
  width: 100%;
  padding-left: 50px;
  text-align: left;
}

#mySidebar button:hover {
  cursor: pointer;
}

#logout button {
  width: 95%;
  margin-top: 40px;
  border-radius: 10px;
  border: 1px solid red;
  background-color: white;
  color: red;
  font-weight: bold;
  text-align: center;
}

#logout>button:active {
  background-color: red;
  color: white;
}

#mySidebar button:hover {
  background-color: whitesmoke;
}

#mySidebar button:active {
  background-color: gainsboro;
}

@media screen and (max-width: 1480px) {
  #navinput {
      width: 500px;
  }
}

@media screen and (max-width: 1380px) {
  #navinput {
      border: none;
      margin-left: -50px;
      width: 400px;
      height: 30px;
      border-radius: 5px;
  }
}

@media screen and (max-width: 1200px) {
  #navinput {
      width: 350px;
      margin-left: 0px;
  }
}

@media screen and (max-width: 1050px) {
  #navin {
      margin: auto;
      width: 80%;
      display: grid;
      grid-template-columns: 15% 50% 45%;
  }

  #navinput {
      margin-left: 50px;
      width: 280px;
  }

  #navbuttons {
      margin-left: -50px;
  }
}

@media screen and (max-width: 1040px) {

  #navdrop {
      display: none;
  }
}

@media screen and (max-width: 1000px) {
  #navinput {
      margin-left: 60px;
      width: 200px;
  }
}

@media screen and (max-width: 950px) {
  #navin {
      margin: auto;
      width: 80%;
      display: grid;
      grid-template-columns: 10% 40% 45%;
  }

  #navinput {
      margin-left: 50px;
      width: 200px;
  }

  #navlogo>img {
      width: 100px;
  }
}

@media screen and (max-width: 850px) {
  #navin {
      display: grid;
      grid-template-columns: repeat(2, 50%);
      justify-content: space-between;
  }

  #navdrop,
  #searchbar {
      display: none;
  }

  #navlogo>img {
      width: 150px;
  }

  #navdrop {
      display: none;
  }
}

@media screen and (max-width: 450px) {
  #navin {
      display: grid;
      grid-template-columns: 30%, 60%;
  }

  #navdrop,
  #searchbar {
      display: none;
  }

  #navlogo>img {
      width: 80px;
  }

  #sidebutton {
      margin-left: 50px;
  }
}



#myDelete {
  background-color: orangered;
  border: none;
  padding: 5px 6px;
  margin-left: 2px;
  border-radius: 4px;
  color: white;
  font-weight: 600;
  font-size: 14px;
}


#styleBAR {
  padding: 0px 4px;
}


body {
  font-family: Arial, Helvetica, sans-serif;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  padding: 20px;
  border: 1px solid #888;
  width: 21%;
  margin: auto;

}

.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.google,
.email,
.apple {
  border: 1px solid #bcb6b6;
  width: 75%;
  height: 20px;
  display: flex;
  align-items: center;

  font-size: 14px;
  padding: 10px 20px;
  font-weight: 600;
  color: #878585;
  border-radius: 3px;
  margin-top: 20px;
  margin-left: 20px;
  text-align: center;

}


.email p {
  text-align: center;
  margin-left: 30px;
}

.google p {
  text-align: center;
  margin-left: 30px;
}

.apple p {
  text-align: center;
  margin-left: 30px;
}

.apple i {
  font-size: 20px;
  color: #000 !important;
}

.con {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.google:hover {
  border: none;
  background-color: #eeeeee;
}

.apple:hover {
  border: none;
  background-color: #eeeeee;
}

.email:hover {
  border: none;
  background-color: #eeeeee;
}

.modal-content h3 {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 30px;
}

.modal-content p {
  text-align: center;
  color: #878585;
  font-size: 15px;
}

#myBtn {
  background-color: rgb(224, 14, 14);
  color: white;
  border: none;
  padding: 7px 10px;
  border-radius: 3px;
  font-size: 15px
}

#bton {
  width: 37%;
  margin: auto;
}

#bton button {
  background-color: #464444;
  color: white;
  border: none;
  padding: 6px 10px;
  border-radius: 3px;
}

